home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 …ember: Reference Library / Apple Developer Reference Library (December 1999) (Disk 1).iso / pc / what's new / sample code / quicktime / qteffects explode / read me < prev   
Encoding:
Text File  |  1999-10-19  |  1.3 KB  |  33 lines

  1. README - QTEffects
  2.  
  3. by Scott Kuechle
  4. <http://developer.apple.com/contact/feedback.html>
  5. Version 1.0
  6. 9/27/1999
  7.  
  8.  
  9. This sample demonstrates how to create a QuickTime movie with a video effect as a transition
  10. from one picture to another. This project differs from the QTShowEffect sample code it is based 
  11. on in that it allows the user to create the effect "by hand" e.g. without the aid of the standard 
  12. QuickTime effects parameter dialog box. Instead, the program itself builds the correct effects 
  13. parameter description atoms.
  14.  
  15. Here's a quick rundown of how the program works:
  16.  
  17. • First, a QuickTime movie with two video tracks is created - these two tracks will be used as 
  18. sources for a cross fade video effect
  19.  
  20. • The effect description and sample description structures for the cross fade effect are created
  21.        
  22. • An effects track and media are created and added to our movie for the cross fade effect
  23.  
  24. • The input map for the effect is created, and references for the two video tracks are added to 
  25. this input map
  26.         
  27. To build the effects movie, simply build and launch the application. At the prompt, specify a location for the movie. The resulting movie, when played with any QuickTime capable player (such as QuickTime Player), will show a smooth alpha blending between the two video tracks.
  28.  
  29.  
  30.  
  31. Enjoy
  32.  
  33.